Don't place html in alt/title attributes, especially with thumbnails
[lhc/web/wiklou.git] / includes / ProtectionForm.php
index 3f7a0fd..65cbfa8 100644 (file)
@@ -87,7 +87,7 @@ class ProtectionForm {
        }
 
        function save() {
-               global $wgRequest, $wgUser;
+               global $wgRequest, $wgUser, $wgOut;
                if( !$wgRequest->wasPosted() ) {
                        return false;
                }
@@ -132,7 +132,8 @@ class ProtectionForm {
                $out .= "<tbody>";
                $out .= "<tr>\n";
                foreach( $this->mRestrictions as $action => $required ) {
-                       $out .= "<th>" . wfMsgHtml( $action ) . "</th>\n";
+                       /* Not all languages have V_x <-> N_x relation */
+                       $out .= "<th>" . wfMsgHtml( 'restriction-' . $action ) . "</th>\n";
                }
                $out .= "</tr>\n";
                $out .= "<tr>\n";
@@ -241,4 +242,4 @@ class ProtectionForm {
 }
 
 
-?>
\ No newline at end of file
+?>